2f2cce64c5a2e94b1d8d4ed8acdf7f493af6b608,Java_CCN/com/parc/ccn/data/util/CCNNetworkObject.java,CCNNetworkObject,saveToRepository,#,509

Before Change


	}
	
	public void saveToRepository() throws IOException {		
		saveToRepository((Timestamp)null);
	}
	
	public void saveToRepository(E data) throws IOException {

After Change


	}
	
	public boolean saveToRepository() throws IOException {		
		return saveToRepository((Timestamp)null);
	}
	
	public boolean saveToRepository(E data) throws IOException {